home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / text / edit / vim60rt.lha / Vim / vim60 / doc / message.txt < prev    next >
Encoding:
Text File  |  2001-09-26  |  23.8 KB  |  682 lines

  1. *message.txt*   For Vim version 6.0.  Last change: 2001 Sep 18
  2.  
  3.  
  4.           VIM REFERENCE MANUAL    by Bram Moolenaar
  5.  
  6.  
  7. This file contains an alphabetical list of messages and error messages that
  8. Vim produces.  You can use this if you don't understand what the message
  9. means.  It is not complete though.
  10.  
  11. 1. Old messages        |:messages|
  12. 2. Error messages    |error-messages|
  13. 3. Messages        |messages|
  14.  
  15. ==============================================================================
  16. 1. Old messages            *:messages* *:mes* *message-history*
  17.  
  18. The ":messages" command can be used to view previously given messages.  This
  19. is especially useful when messages have been overwritten or truncated.  This
  20. depends on the 'shortmess' option.
  21.  
  22. The number of remembered messages is fixed at 20.
  23.  
  24. If you are using translated messages, the first printed line tells who
  25. maintains the messages or the translations.  You can use this to contact the
  26. maintainer when you spot a mistake.
  27.  
  28. If you want to find help on a specific (error) message, use the ID at the
  29. start of the message.  For example, to get help on the message: >
  30.  
  31.     E72: Close error on swap file
  32.  
  33. or (translated): >
  34.  
  35.     E72: Errore durante chiusura swap file
  36.  
  37. Use: >
  38.  
  39.     :help E72
  40.  
  41. If you are lazy, it also works without the shift key: >
  42.  
  43.     :help e72
  44.  
  45. ==============================================================================
  46. 2. Error messages                    *error-messages*
  47.  
  48. When an error message is displayed, but it is removed before you could read
  49. it, you can see it again with: >
  50.   :echo errmsg
  51. or view a list of recent messages with: >
  52.   :messages
  53.  
  54.  
  55. LIST OF MESSAGES
  56.             *E222* *E228* *E232* *E256* *E293* *E298* *E304* *E317*
  57.             *E318* *E356* *E438* *E439* *E440* *E316* *E320* *E322*
  58.             *E323* *E341*  >
  59.   Add to read buffer
  60.   makemap: Illegal mode
  61.   Cannot create BalloonEval with both message and callback
  62.   Hangul automata ERROR
  63.   block was not locked
  64.   Didn't get block nr {N}?
  65.   ml_timestamp: Didn't get block 0??
  66.   pointer block id wrong {N}
  67.   Updated too many blocks?
  68.   get_varp ERROR
  69.   u_undo: line numbers wrong
  70.   undo list corrupt
  71.   undo line missing
  72.   ml_get: cannot find line {N}
  73.   cannot find line {N}
  74.   line number out of range: {N} past the end
  75.   line count wrong in block {N}
  76.  
  77. This is an internal error.  If you can reproduce it, please send in a bug
  78. report. |bugs|
  79.  
  80. >
  81.   ATTENTION
  82.   Found a swap file by the name ...
  83.  
  84. See |ATTENTION|.
  85.  
  86.                             *E92*  >
  87.   Buffer {N} not found
  88.  
  89. The buffer you requested does not exist.  This can also happen when you have
  90. wiped out a buffer which contains a mark or is referenced in another way.
  91. |:bwipeout|
  92.  
  93.                             *E95*  >
  94.   Buffer with this name already exists
  95.  
  96. You cannot have two buffers with the same name.
  97.  
  98.                             *E72*  >
  99.   Close error on swap file
  100.  
  101. The |swap-file|, that is used to keep a copy of the edited text, could not be
  102. closed properly.  Mostly harmless.
  103.  
  104.                             *E169*  >
  105.   Command too recursive
  106.  
  107. This happens when an Ex command executes an Ex command that executes an Ex
  108. command, etc.  This is only allowed 200 times.  When it's more there probably
  109. is an endless loop.  Probably a |:execute| or |:source| command is involved.
  110.  
  111.                             *E254*  >
  112.   Cannot allocate color {name}
  113.  
  114. The color name {name} is unknown.  See |gui-colors| for a list of colors that
  115. are available on most systems.
  116.  
  117.                             *ec1*  >
  118.   Cannot allocate colormap entry for "xxxx"
  119.   Cannot allocate colormap entry, some colors may be incorrect
  120.  
  121. This means that there are not enough colors available for Vim.  It will still
  122. run, but some of the colors will not appear in the specified color.  Try
  123. stopping other applications that use many colors, or start them after starting
  124. gvim.
  125. Netscape is known to consume a lot of colors.  You can avoid this by telling
  126. it to use its own colormap: >
  127.     netscape -install
  128. Or tell it to limit to a certain number of colors (64 should work well): >
  129.     netscape -ncols 64
  130. This can also be done with a line in your Xdefaults file: >
  131.     Netscape*installColormap: Yes
  132. or >
  133.     Netscape*maxImageColors:  64
  134. <
  135.                             *E79*  >
  136.   Cannot expand wildcards
  137.  
  138. A filename contains a strange combination of characters, which causes Vim to
  139. attempt expanding wildcards but this fails.  This does NOT mean that no
  140. matching file names could be found, but that the pattern was illegal.
  141.  
  142.                             *E190* *E212*  >
  143.   Cannot open "{filename}" for writing
  144.   Can't open file for writing
  145.  
  146. For some reason the file you are writing to cannot be created or overwritten.
  147. The reason could be that you do not have permission to write in the directory
  148. or the file name is not valid.
  149.  
  150.                             *E166*  >
  151.   Can't open linked file for writing
  152.  
  153. You are trying to write to a file which can't be overwritten, and the file is
  154. a link (either a hard link or a symbolic link).  Writing might still be
  155. possible if the directory that contains the link or the file is writable, but
  156. Vim now doesn't know if you want to delete the link and write the file in its
  157. place, or if you want to delete the file itself and write the new file in its
  158. place.  If you really want to write the file under this name, you have to
  159. manually delete the link or the file, or change the permissions so that Vim
  160. can overwrite.
  161.  
  162.                             *E46*  >
  163.   Cannot set read-only variable "{name}"
  164.  
  165. You are trying to assign a value to an argument of a function |a:var| or a Vim
  166. internal variagble |v:var| which is read-only.
  167.  
  168.                             *E90*  >
  169.   Cannot unload last buffer
  170.  
  171. Vim always requires one buffer to be loaded, otherwise there would be nothing
  172. to display in the window.
  173.  
  174.                             *E40*  >
  175.   Can't open errorfile <filename>
  176.  
  177. When using the ":make" or ":grep" commands: The file used to save the error
  178. messages or grep output cannot be opened.  This can have several causes:
  179. - 'shellredir' has a wrong value.
  180. - The shell changes directory, causing the error file to be written in another
  181.   directory.  This could be fixed by changing 'makeef', but then the make
  182.   command is still executed in the wrong directory.
  183. - 'makeef' has a wrong value.
  184. - The 'grepprg' or 'makeprg' could not be executed.  This cannot always be
  185.   detected (especially on MS-Windows).  Check your $PATH.
  186.  
  187.  >
  188.   Can't open file C:\TEMP\VIoD243.TMP
  189.  
  190. On MS-Windows, this message appears when the output of an external command was
  191. to be read, but the command didn't run successfully.  This can be caused by
  192. many things.  Check the 'shell', 'shellquote', 'shellxquote', 'shellslash' and
  193. related options.  It might also be that the external command was not found,
  194. there is no different error message for that.
  195.  
  196.                             *E12*  >
  197.   Command not allowed from exrc/vimrc in current dir or tag search
  198.  
  199. Some commands are not allowed for security reasons.  These commands mostly
  200. come from a .exrc or .vimrc file in the current directory, or from a tags
  201. file.  Also see 'secure'.
  202.  
  203.                             *E74*  >
  204.   Command too complex
  205.  
  206. A mapping resulted in a very long command string.  Could be caused by a
  207. mapping that indirectly calls itself.
  208.  
  209. >
  210.   CONVERSION ERROR
  211.  
  212. When writing a file and the text "CONVERSION ERROR" appears, this means that
  213. some bits were lost when converting text from the internally used UTF-8 to the
  214. format of the file.  The file will not be marked unmodified.  If you care
  215. about the loss of information, set the 'fileencoding' option to another value
  216. that can handle the characters in the buffer and write again.  If you don't
  217. care, you can abandon the buffer or reset the 'modified' option.
  218.  
  219.                             *E302*  >
  220.   Could not rename swap file
  221.  
  222. When the file name changes, Vim tries to rename the |swap-file| as well.
  223. This failed and the old swap file is now still used.  Mostly harmless.
  224.  
  225.                             *E43* *E44*  >
  226.   Damaged match string
  227.   Corrupted regexp program
  228.  
  229. Something inside Vim went wrong and resulted in a corrupted regexp.  If you
  230. know how to reproduce this problem, please report it. |bugs|
  231.  
  232.                             *E208* *E209* *E210*  >
  233.   Error writing to "{filename}"
  234.   Error closing "{filename}"
  235.   Error reading "{filename}"
  236.  
  237. This occurs when Vim is trying to rename a file, but a simple change of file
  238. name doesn't work.  Then the file will be copied, but somehow this failed.
  239. The result may be that both the original file and the destination file exist
  240. and the destination file may be incomplete.
  241.  
  242.                             *E47*  >
  243.   Error while reading errorfile
  244.  
  245. Reading the error file was not possible.  This is NOT caused by an error
  246. message that was not recognized.
  247.  
  248.                             *E80*  >
  249.   Error while writing
  250.  
  251. Writing a file was not completed successfully.  The file is probably
  252. incomplete.
  253.  
  254.                             *E13* *E189*  >
  255.   File exists (use ! to override)
  256.   "{filename}" exists (use ! to override)
  257.  
  258. You are protected from accidentally overwriting a file.  When you want to
  259. write anyway, use the same command, but add a "!" just after the command.
  260. Example: >
  261.     :w /tmp/test
  262. changes to: >
  263.     :w! /tmp/test
  264. <
  265.                             *E139*  >
  266.   File is loaded in another buffer
  267.  
  268. You are trying to write a file under a name which is also used in another
  269. buffer.  This would result in two versions of the same file.
  270.  
  271.                             *E142*  >
  272.   File not written: Writing is disabled by 'write' option
  273.  
  274. The 'write' option is off.  This makes all commands that try to write a file
  275. generate this message.  This could be caused by a |-m| commandline argument.
  276. You can switch the 'write' option on with ":set write".
  277.  
  278.                             *E25*  >
  279.   GUI cannot be used: Not enabled at compile time
  280.  
  281. You are running a version of Vim that doesn't include the GUI code.  Therefore
  282. "gvim" and ":gui" don't work.
  283.  
  284.                             *E49*  >
  285.   Invalid scroll size
  286.  
  287. This is caused by setting an invalid value for the 'scroll', 'scrolljump' or
  288. 'scrolloff' options.
  289.  
  290.                             *E17*  >
  291.   "{filename}" is a directory
  292.  
  293. You tried to write a file with the name of a directory.  This is not possible.
  294. You probably need to append a file name.
  295.  
  296.                             *E19*  >
  297.   Mark has invalid line number
  298.  
  299. You are using a mark that has a line number that doesn't exist.  This can
  300. happen when you have a mark in another file, and some other program has
  301. deleted lines from it.
  302.  
  303.                             *E219* *E220*  >
  304.   Missing {.
  305.   Missing }.
  306.  
  307. Using a {} construct in a file name, but there is a { without a matching } or
  308. the other way around.  It should be used like this: {foo,bar}.  This matches
  309. "foo" and "bar".
  310.  
  311.                             *E315*  >
  312.   ml_get: invalid lnum:
  313.  
  314. This is an internal Vim error.  Please try to find out how it can be
  315. reproduced, and submit a bug report |bugreport.vim|.
  316.  
  317.                             *E173*  >
  318.   {number} more files to edit
  319.  
  320. You are trying to exit, while the last item in the argument list has not been
  321. edited.  This protects you from accidentally exiting when you still have more
  322. files to work on.  See |argument-list|.  If you do want to exit, just do it
  323. again and it will work.
  324.  
  325.                             *E23* *E194*  >
  326.   No alternate file
  327.   No alternate file name to substitute for '#'
  328.  
  329. The alternate file is not defined yet.  See |alternate-file|.
  330.  
  331.                             *E32*  >
  332.   No file name
  333.  
  334. The current buffer has no name.  To write it, use ":w fname".  Or give the
  335. buffer a name with ":file fname".
  336.  
  337.                             *E141*  >
  338.   No file name for buffer {number}
  339.  
  340. One of the buffers that was changed does not have a file name.  Therefore it
  341. cannot be written.  You need to give the buffer a file name: >
  342.     :buffer {number}
  343.     :file {filename}
  344. <
  345.                             *E33*  >
  346.   No previous substitute regular expression
  347.  
  348. When using the '~' character in a pattern, it is replaced with the previously
  349. used pattern in a ":substitute" command.  This fails when no such command has
  350. been used yet.  See |/~|.
  351.  
  352.                             *E35*  >
  353.   No previous regular expression
  354.  
  355. When using an empty search pattern, the previous search pattern is used.  But
  356. that is not possible if there was no previous search.
  357.  
  358.                             *E24*  >
  359.   No such abbreviation
  360.  
  361. You have used an ":unabbreviate" command with an argument which is not an
  362. existing abbreviation.  All variations of this command give the same message:
  363. ":cunabbrev", ":iunabbrev", etc.  Check for trailing white space.
  364.  
  365. >
  366.   /dev/dsp: No such file or directory
  367.  
  368. Only given for GTK GUI with Gnome support.  Gnome tries to use the audio
  369. device and it isn't present.  You can ignore this error.
  370.  
  371.                             *E31*  >
  372.   No such mapping
  373.  
  374. You have used an ":unmap" command with an argument which is not an existing
  375. mapping.  All variations of this command give the same message: ":cunmap",
  376. ":unmap!", etc.  Check for trailing white space.
  377.  
  378.                             *E37* *E89*  >
  379.   No write since last change (use ! to override)
  380.   No write since last change for buffer {N} (use ! to override)
  381.  
  382. You are trying to |abandon| a file that has changes.  Vim protects you from
  383. losing your work.  You can either write the changed file with ":w", or, if you
  384. are sure, |abandon| it anyway, and lose all the changes.  This can be done by
  385. adding a '!' character just after the command you used.  Example: >
  386.     :e other_file
  387. changes to: >
  388.     :e! other_file
  389. <
  390.                             *E162*  >
  391.   No write since last change for buffer "{name}"
  392.  
  393. This appears when you try to exit Vim while some buffers are changed.  You
  394. will either have to write the changed buffer (with |:w|), or use a command to
  395. abandon the buffer forcefully, e.g., with ":qa!".  Careful, make sure you
  396. don't throw away changes you really want to keep.  You might have forgotten
  397. about a buffer, especially when 'hidden' is set.
  398.  
  399.                             *E38*  >
  400.   Null argument
  401.  
  402. Something inside Vim went wrong and resulted in a NULL pointer.  If you know
  403. how to reproduce this problem, please report it. |bugs|
  404.  
  405.                             *E172*  >
  406.   Only one file name allowed
  407.  
  408. The ":edit" command only accepts one file name.  When you want to specify
  409. several files for editing use ":next" |:next|.
  410.  
  411.                         *E41* *E82* *E83* *E342*  >
  412.   Out of memory!
  413.   Out of memory!  (allocating {number} bytes)
  414.   Cannot allocate any buffer, exiting...
  415.   Cannot allocate buffer, using other one...
  416.  
  417. Oh, oh.  You must have been doing something complicated, or some other program
  418. is consuming your memory.  Be careful!  Vim is not completely prepared for an
  419. out-of-memory situation.  First make sure that any changes are saved.  Then
  420. try to solve the memory shortage.  To stay on the safe side, exit Vim and
  421. start again.  Also see |msdos-limitations|.
  422.  
  423.                             *E339*  >
  424.   Pattern too long
  425.  
  426. This only happens on systems with 16 bit ints: The compiled regexp pattern is
  427. longer than about 65000 characters.  Try using a shorter pattern.
  428.  
  429.                             *E45*  >
  430.   'readonly' option is set (use ! to override)
  431.  
  432. You are trying to write a file that was marked as read-only.  To write the
  433. file anyway, either reset the 'readonly' option, or add a '!' character just
  434. after the command you used.  Example: >
  435.     :w
  436. changes to: >
  437.     :w!
  438. <
  439.                             *E294* *E295* *E301*  >
  440.   Read error in swap file
  441.   Seek error in swap file read
  442.   Oops, lost the swap file!!!
  443.  
  444. Vim tried to read text from the |swap-file|, but something went wrong.  The
  445. text in the related buffer may now be corrupted!  Check carefully before you
  446. write a buffer.  You may want to write it in another file and check for
  447. differences.
  448.  
  449.                             *E192*  >
  450.   Recursive use of :normal too deep
  451.  
  452. You are using a ":normal" command, whose argument again uses a ":normal"
  453. command in a recursive way.  This is restricted to 'maxmapdepth' levels.  This
  454. example illustrates how to get this message: >
  455.     :map gq :normal gq<CR>
  456. If you type "gq", it will execute this mapping, which will call "gq" again.
  457.  
  458.                             *E22*  >
  459.   Scripts nested too deep
  460.  
  461. Scripts can be read with the "-s" command-line argument and with the ":source"
  462. command.  The script can then again read another script.  This can continue
  463. for about 14 levels.  When more nesting is done, Vim assumes that there is a
  464. recursive loop somewhere and stops with this error message.
  465.  
  466.                             *E319*  >
  467.   Sorry, the command is not available in this version
  468.  
  469. You have used a command that is not present in the version of Vim you are
  470. using.  When compiling Vim, many different features can be enabled or
  471. disabled.  This depends on how big Vim has chosen to be and the operating
  472. system.  See |+feature-list| for when which feature is available.  The
  473. |:version| command shows which feature Vim was compiled with.
  474.  
  475.                             *E300*  >
  476.   Swap file already exists (symlink attack?)
  477.  
  478. This message appears when Vim is trying to open a swap file and finds it
  479. already exists or finds a symbolic link in its place.  This shouldn't happen,
  480. because Vim already checked that the file doesn't exist.  Either someone else
  481. opened the same file at exactly the same moment (very unlikely) or someone is
  482. attempting a symlink attack (could happen when editing a file in /tmp or when
  483. 'directory' starts with "/tmp", which is a bad choice).
  484.  
  485.                             *E432*  >
  486.   Tags file not sorted: {file name}
  487.  
  488. Vim (and Vi) expect tags files to be sorted in ASCII order.  Binary searching
  489. can then be used, which is a lot faster than a linear search.  If your tags
  490. files are not properly sorted, reset the |'tagbsearch'| option.
  491. This message is only given when Vim detects a problem when searching for a
  492. tag.  Sometimes this message is not given, even thought the tags file is not
  493. properly sorted.
  494.  
  495.                             *E424*  >
  496.   Too many different highlighting attributes in use
  497.  
  498. Vim can only handle about 223 different kinds of highlighting.  If you run
  499. into this limit, you have used too many |:highlight| commands with different
  500. arguments.  A ":highlight link" is not counted.
  501.  
  502.                             *E77*  >
  503.   Too many file names
  504.  
  505. When expanding file names, more than one match was found.  Only one match is
  506. allowed for the command that was used.
  507.  
  508.                             *E303*  >
  509.   Unable to open swap file for "{filename}", recovery impossible
  510.  
  511. Vim was not able to create a swap file.  You can still edit the file, but if
  512. Vim unexpected exits the changes will be lost.  And Vim may consume a lot of
  513. memory when editing a big file.  You may want to change the 'directory' option
  514. to avoid this error.  See |swap-file|.
  515.  
  516.                             *E140*  >
  517.   Use ! to write partial buffer
  518.  
  519. When using a range to write part of a buffer, it is unusual to overwrite the
  520. original file.  It is probably a mistake (e.g., when Visual mode was active
  521. when using ":w"), therefore Vim requires using a !  after the command, e.g.:
  522. ":3,10w!".
  523. >
  524.  
  525.   Warning: Cannot convert string "<Key>Escape,_Key_Cancel" to type
  526.   VirtualBinding
  527.  
  528. Messages like this appear when starting up.  This is not a Vim problem, your
  529. X11 configuration is wrong.  You can find a hint on how to solve this here:
  530. http://groups.yahoo.com/group/solarisonintel/message/12179.
  531.  
  532.                             *W10*  >
  533.   Warning: Changing a readonly file
  534.  
  535. The file is read-only and you are making a change to it anyway.  You can use
  536. the |FileChangedRO| autocommand event to avoid this message (the autocommand
  537. must reset the 'readonly' option).  See 'modifiable' to completely disallow
  538. making changes to a file.
  539.  
  540.                             *W13*  >
  541.   Warning: File "{filename}" has been created after editing started
  542.  
  543. You are editing a file in Vim when it didn't exist, but it does exist now.
  544. You will have to decide if you want to keep the version in Vim or the newly
  545. created file.  This message is not given when 'buftype' is not empty.
  546.  
  547.                             *W11*  >
  548.   Warning: File "{filename}" has changed since editing started
  549.  
  550. The file which you have started editing has got another timestamp and the
  551. contents changed (more precisely: When reading the file again with the current
  552. option settings and autocommands you would end up with different text).  This
  553. probably means that some other program changed the file.  You will have to
  554. find out what happened, and decide which version of the file you want to keep.
  555. Set the 'autoread' option if you want to do this automatically.
  556. There is one situation where you get this message even though there is nothing
  557. wrong: If you save a file in Windows on the day the daylight saving time
  558. starts.  It can be fixed by adding this line in your autoexec.bat: >
  559.        SET TZ=-1
  560. Adjust the "-1" for your time zone.  Or just write the file again the next
  561. day.
  562. This message is not given when 'buftype' is not empty.
  563.  
  564.                             *W12*  >
  565.   Warning: File "{filename}" has changed and the buffer was changed in Vim as well
  566.  
  567. Like the above, and the buffer for the file was changed in this Vim as well.
  568. You will have to decide if you want to keep the version in this Vim or the one
  569. on disk.  This message is not given when 'buftype' is not empty.
  570.  
  571.                             *W16*  >
  572.   Warning: Mode of file "{filename}" has changed since editing started
  573.  
  574. When the timestamp for a buffer was changed and the contents are still the
  575. same but the mode (permissions) have changed.  This usually occurs when
  576. checking out a file from a version control system, which causes the read-only
  577. bit to be reset.  It should be safe to reload the file.  Set 'autoread' to
  578. automatically reload the file.
  579.  
  580.                             *E211*  >
  581.   Warning: File "{filename}" no longer available
  582.  
  583. The file which you have started editing has disappeared, or is no longer
  584. accessible.  Make sure you write the buffer somewhere to avoid loosing
  585. changes.  This message is not given when 'buftype' is not empty.
  586.  
  587.                             *W14*  >
  588.   Warning: List of file names overflow
  589.  
  590. You must be using an awful lot of buffers.  It's now possible that two buffers
  591. have the same number, which causes various problems.  You might want to exit
  592. Vim and restart it.
  593.  
  594.                             *E296* *E297*  >
  595.   Seek error in swap file write
  596.   Write error in swap file
  597.  
  598. This mostly happens when the disk is full.  Vim could not write text into the
  599. |swap-file|.  It's not directly harmful, but when Vim unexpectedly exits some
  600. text may be lost without recovery being possible.  Vim might run out of memory
  601. when this problem persists.
  602.  
  603.                         *connection-refused*  >
  604.   Xlib: connection to "<machine-name:0.0" refused by server
  605.  
  606. This happens when Vim tries to connect to the X server, but the X server does
  607. not allow a connection.  The connection to the X server is needed to be able
  608. to restore the title and for the xterm clipboard support.  Unfortunately this
  609. error message cannot be avoided, except by disabling the |+xterm_clipboard|
  610. and |+X11| features.
  611.  
  612.                             *E10*  >
  613.   \\ should be followed by /, ? or &
  614.  
  615. A command line started with a backslash or the range of a command contained a
  616. backslash in a wrong place.  This is often caused by command-line continuation
  617. being disabled.  Remove the 'C' flag from the 'cpoptions' option to enable it.
  618.  
  619. ==============================================================================
  620. 3. Messages                        *messages*
  621.  
  622. This is an (incomplete) overview of various messages that Vim gives:
  623.  
  624.         *hit-enter* *press-enter* *hit-return* *press-return*  >
  625.  
  626.   Hit ENTER or type command to continue
  627.  
  628. This message is given when there is something on the screen for you to read,
  629. and the screen is about to be redrawn:
  630. - After executing an external command (e.g., ":!ls" and "=").
  631. - Something is displayed on the status line that is longer than the width of
  632.   the window, or runs into the 'showcmd' or 'ruler' output.
  633.  
  634. -> Hit <Enter> or <Space> to redraw the screen and continue, without that key
  635.    being used otherwise.
  636. -> Hit ":" or any other Normal mode command character to start that command.
  637. -> Hit <C-Y> to copy (yank) a modeless selection to the clipboard register.
  638. -> Use a menu.  The characters defined for Cmdline-mode are used.
  639. {Vi: only ":" commands are interpreted}
  640.  
  641. To reduce the number of hit-enter prompts:
  642. - Set 'cmdheight' to 2 or higher.
  643. - Add flags to 'shortmess'.
  644. - Reset 'showcmd' and/or 'ruler'.
  645.  
  646. Also see 'mouse'.  It is highlighted with the |hl-Question| group.
  647.  
  648.  
  649.                             *more-prompt*  >
  650.   -- More --
  651.   -- More -- (RET: line, SPACE: page, d: half page, q: quit)
  652.   -- More -- (RET/BS: line, SPACE/b: page, d/u: half page, q: quit)
  653.  
  654. This message is given when the screen is filled with messages.  It is only
  655. given when the 'more' option is on.  It is highlighted with the |hl-MoreMsg|
  656. group.
  657.  
  658. Type                    effect ~
  659.      <CR> or <NL> or j or <Down>    one more line
  660.      <BS> or k or <Up>            one line back (*)
  661.      <Space> or <PageDown>        next page
  662.      b or <PageUp>            previous page (*)
  663.      d                    down half a page
  664.      u                    up half a page (*)
  665.      q, <Esc> or CTRL-C            stop the listing
  666.      :                    stop the listing and enter a
  667.                          command-line
  668.     <C-Y>                yank (copy) a modeless selection to
  669.                     the clipboard ("* and "+ registers)
  670.     {menu-entry}            what the menu is defined to in
  671.                     Cmdline-mode.
  672.  
  673. Any other key causes the meaning of the keys to be displayed.
  674.  
  675. (*) backwards scrolling is only supported for these commands: >
  676.     :clist
  677.  
  678. Note: The typed key is directly obtained from the terminal, it is not mapped
  679. and typeahead is ignored.
  680.  
  681.  vim:tw=78:ts=8:ft=help:norl:
  682.